BeautifulSoup 3: careercenter.am

Previosuly, we used pandas.read_html() function to get tables from careercenter.am. We will get the same tables today, but using BeautifulSoup.


In [1]:
from BeautifulSoup import *
import requests

In [2]:
url = "https://careercenter.am/ccidxann.php"

In [3]:
response = requests.get(url)
page = response.text
soup = BeautifulSoup(page)

In [4]:
tables = soup.findAll("table")

In [5]:
len(tables)


Out[5]:
5

In [6]:
print(tables[0])


<table width="100%" border="0">
<tr><td align="center" colspan="2"><strong><a name="JO">JOB OPPORTUNITIES</a></strong></td></tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 11 July 2017" href="ccdspann.php?id=28565">International Sales Manager / Intelcom Line</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 11 July 2017" href="ccdspann.php?id=28534">Dentist / Telia-Med</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 11 July 2017" href="ccdspann.php?id=28568">UI/ UX Designer / Sgames</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 11 July 2017" href="ccdspann.php?id=28567">Senior Front-End Developer / Benivo</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 11 July 2017" href="ccdspann.php?id=28566">Senior Back-End Developer / Benivo</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 30 June 2017" href="ccdspann.php?id=28562">Program Development Associate / IDeA</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 23 June 2017" href="ccdspann.php?id=28560">Administrative Clerk/ Chauffeur / U.S. Embassy Yerevan</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 08 July 2017" href="ccdspann.php?id=28561">Business Advisor / Inecobank</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 08 July 2017" href="ccdspann.php?id=28559">Full Stack Developer / Baldi Retail</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 20 June 2017" href="ccdspann.php?id=28558">Credit Specialist / Kilikia UCO</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 23 June 2017" href="ccdspann.php?id=28557">Credit Information and Collection Officer / Byblos Bank Armenia</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 23 June 2017" href="ccdspann.php?id=28556">Head of Credit Information and Collection Unit / Byblos Bank Armenia</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 08 July 2017" href="ccdspann.php?id=28555">Senior PHP/ Magento Developer / CertiPro Solutions</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 08 July 2017" href="ccdspann.php?id=28452">Product Manager / e-World Systems</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 30 June 2017" href="ccdspann.php?id=28550">Grants Manager for Bridge4CSOs Project / Armenian General Benevolent Union</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 25 June 2017" href="ccdspann.php?id=28551">Development and Fundraising Officer / CRRC-Armenia</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 08 July 2017" href="ccdspann.php?id=28545">Administrative Assistant / SAS Group</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 08 July 2017" href="ccdspann.php?id=28543">UI/ UX Designer / SFL</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 22 June 2017" href="ccdspann.php?id=28548">Head of Disaster Management Department / Armenian Red Cross Society</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 07 July 2017" href="ccdspann.php?id=28521">Data Manager/ IT Specialist / DarmanTest Laboratories</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 07 July 2017" href="ccdspann.php?id=28516">Graphic Designer / Grand Candy</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 07 July 2017" href="ccdspann.php?id=28508">Category Manager / Spayka</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 07 July 2017" href="ccdspann.php?id=28536">Web Content Manager / FXTM Armenia</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 07 July 2017" href="ccdspann.php?id=28460">Retail Store Manager/ Brand Manager / Guess Armenia</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 07 July 2017" href="ccdspann.php?id=28544">Sales Consultant / Chronograph Boutique</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 26 June 2017" href="ccdspann.php?id=28540">Field Engineer / Lydian Armenia</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 25 June 2017" href="ccdspann.php?id=28539">Maintenance Planning Engineer / Lydian Armenia</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 21 June 2017" href="ccdspann.php?id=28535">Short-Term Expert for Gap Analysis on Current Internal Control System  / GIZ</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 23 June 2017" href="ccdspann.php?id=28527">Procurement and Contract Management Specialist / Transport Project Implementation Organization</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 30 June 2017" href="ccdspann.php?id=28526">UNIX System Adminsitrator / VivaCell-MTS</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 02 July 2017" href="ccdspann.php?id=28533">RAN Engineer / VivaCell-MTS</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 02 July 2017" href="ccdspann.php?id=28532">Transmission Engineer / VivaCell-MTS</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 14 June 2017" href="ccdspann.php?id=28530">Organizational Capacity Assessment Expert / Armenian Red Cross Society</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 06 July 2017" href="ccdspann.php?id=28502">Sales Consultant / Mobile Centre</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 15 June 2017" href="ccdspann.php?id=28515">Financial Analyst / La Galleria Luxury Boutiques</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 30 June 2017" href="ccdspann.php?id=28525">Assistant Project Manager / BigBek</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 30 June 2017" href="ccdspann.php?id=28524">Senior Front-End Developer / BigBek</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 30 June 2017" href="ccdspann.php?id=28523">Graphic Designer / BigBek</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 30 June 2017" href="ccdspann.php?id=28522">Web Developer / BigBek</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 06 July 2017" href="ccdspann.php?id=28505">Director of Recruitment, Selection and Matriculation / Teach For Armenia</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 19 June 2017" href="ccdspann.php?id=28383">Deputy CFO/ Chief Accountant / Mega Food</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 05 July 2017" href="ccdspann.php?id=28512">HVAC Systems Design Engineer / Consel</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 05 July 2017" href="ccdspann.php?id=28517">Content Manager / Frismos</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 05 July 2017" href="ccdspann.php?id=28511">iOS Developer / M&amp;M Media</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 05 July 2017" href="ccdspann.php?id=28510">Android Developer / M&amp;M Media</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 05 July 2017" href="ccdspann.php?id=28518">Junior Software Developer / CertiPro Solutions</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 27 June 2017" href="ccdspann.php?id=28513">Senior Network Administrator / ArmenTel</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 16 June 2017" href="ccdspann.php?id=28509">Analyst / European Bank for Reconstruction and Development</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 30 June 2017" href="ccdspann.php?id=28501">Junior iOS Developer / Zangi</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 25 June 2017" href="ccdspann.php?id=28504">Revenue Assurance Senior Specialist / VivaCell-MTS</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 04 July 2017" href="ccdspann.php?id=28462">Internet Marketing Specialist / Best Card</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 04 July 2017" href="ccdspann.php?id=28496">Administrative Assistant, Marketing Department / Aras Food</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 04 July 2017" href="ccdspann.php?id=28499">Back-End Developer / ApolloBytes</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 04 July 2017" href="ccdspann.php?id=28498">ReactJS Developer / ApolloBytes</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 04 July 2017" href="ccdspann.php?id=28495">Director of Sales Department / VAS Group</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 04 July 2017" href="ccdspann.php?id=28497">Persian Language Specialist / Rosgosstrakh-Armenia</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 15 June 2017" href="ccdspann.php?id=28481">Executive Assistant / Sef International UCO</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 16 June 2017" href="ccdspann.php?id=28494">Lawyer / Kapan Mining and Processing Company</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 25 June 2017" href="ccdspann.php?id=28490">ISMS Senior Analyst / VivaCell-MTS</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 04 July 2017" href="ccdspann.php?id=28489">Senior .NET Developer / SouthTech Consulting</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 25 June 2017" href="ccdspann.php?id=28486">Chief Accountant / Noyan Tapan</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 16 June 2017" href="ccdspann.php?id=28487">Leading Loan Specialist of Microcredit Block in Head Office / Kamurj UCO</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 01 July 2017" href="ccdspann.php?id=28484">Senior Internal Auditor / FINCA UCO</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 25 June 2017" href="ccdspann.php?id=28483">Credit Officer / Prometey Bank</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 15 June 2017" href="ccdspann.php?id=28470">Director / Civic Development and Partnership Foundation</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 01 July 2017" href="ccdspann.php?id=28468">Finance Director / Reso Insurance</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 23 June 2017" href="ccdspann.php?id=28474">FTTB, ADSL/ VDSL Networks Monitoring Technical Expert / ArmenTel</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 23 June 2017" href="ccdspann.php?id=28473">Digital Platforms Manager / ArmenTel</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 30 June 2017" href="ccdspann.php?id=28472">Consultant/ Seller / TST</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 30 June 2017" href="ccdspann.php?id=28457">Operations Research Developer / Optym Armenia</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 16 June 2017" href="ccdspann.php?id=28471">Product Manager / Berlin-Chemie Armenian Representation</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 15 June 2017, 6:00 p.m." href="ccdspann.php?id=28467">Policy Analyst / UNDP Armenia Office</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 30 June 2017" href="ccdspann.php?id=28469">Front-End Developer / 4H</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 30 June 2017" href="ccdspann.php?id=28465">Specialist of Reconciliation Division / ArmSwissBank</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 30 June 2017" href="ccdspann.php?id=28464">Specialist of Loans Processing and Reporting Division / ArmSwissBank</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 14 June 2017" href="ccdspann.php?id=28458">Accountant / Zeppelin Armenia</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 25 June 2017" href="ccdspann.php?id=28463">Head of Digital Banking / Ameriabank</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 30 June 2017" href="ccdspann.php?id=28445">Data Analyst / IPSC</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 30 June 2017" href="ccdspann.php?id=28447">Account Manager, Client Service Department / McCann Erickson</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 30 June 2017" href="ccdspann.php?id=28446">Digital Marketing Specialist / McCann Erickson</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 30 June 2017" href="ccdspann.php?id=28435">Medical Representative/ Medical Equipment Specialist / Concern-Energomash</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 15 June 2017" href="ccdspann.php?id=28459">Head of Finance Management/ Chief Accountant / Transport Project Implementation Organization</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 30 June 2017" href="ccdspann.php?id=28384">Receptionist / Envoy Hostel</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 14 June 2017, 18:00" href="ccdspann.php?id=28456">Consultant on Cost Benefit Analysis of Alternative Pre-school Educational Services in Consolidated Communities of Armenia / UNICEF</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 30 June 2017" href="ccdspann.php?id=28453">Digital Innovations Specialist / Ucom</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 30 June 2017" href="ccdspann.php?id=28454">Graphic  Designer / Baldi Retail</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 29 June 2017" href="ccdspann.php?id=28428">Mid-Level Front-End Software Engineer / Aarki</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 29 June 2017" href="ccdspann.php?id=28427">Junior Front-End Software Engineer / Aarki</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 29 June 2017" href="ccdspann.php?id=28444">Java Developer / IUNetworks</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 29 June 2017" href="ccdspann.php?id=28443">JavaScript Developer / IUNetworks</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 29 June 2017" href="ccdspann.php?id=28422">Media Planner / Media Systems</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 15 June 2017" href="ccdspann.php?id=28438">Sales Manager / Marli</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 20 June 2017" href="ccdspann.php?id=28440">QC/ QA Manager/ Chief Engineer / MLL Industries</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 29 June 2017" href="ccdspann.php?id=28442">Customer Service Specialist / Varks.am</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 18 June 2017" href="ccdspann.php?id=28441">Audit Assistant / KPMG Armenia</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 28 June 2017" href="ccdspann.php?id=28421">Sales Assistant / Bass Boutique Hotel</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 28 June 2017" href="ccdspann.php?id=28439">Technical Support Specialist / Ucom</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 28 June 2017" href="ccdspann.php?id=28401">Head of Research Center / Darmantest Laboratories</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 28 June 2017" href="ccdspann.php?id=28410">Senior Full Stack Web Developer / Evolver</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 28 June 2017" href="ccdspann.php?id=28431">Social Media Marketing Specialist / SAS Group</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 25 June 2017" href="ccdspann.php?id=28424">Application Security Engineer / Workfront</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 25 June 2017" href="ccdspann.php?id=28423">Security Operations Analyst / Workfront</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 25 June 2017" href="ccdspann.php?id=28420">Head of Marketing / Digitain</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 25 June 2017" href="ccdspann.php?id=28345">HR Manager / Monazite</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 25 June 2017" href="ccdspann.php?id=28344">Restaurant Manager / Monazite</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 25 June 2017" href="ccdspann.php?id=28346">Hotel Director / Monazite</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 23 June 2017" href="ccdspann.php?id=28419">IT Administrator / BDO Armenia</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 25 June 2017" href="ccdspann.php?id=28418">Ejmiatsin Branch Customer Service Specialist / Varks.am</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 25 June 2017" href="ccdspann.php?id=28417">Gyumri Branch Customer Service Specialist / Varks.am</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 25 June 2017" href="ccdspann.php?id=28416">Stepanavan Branch Customer Service Specialist / Varks.am</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 25 June 2017" href="ccdspann.php?id=28414">Vanadzor Branch Customer Service Specialist / Varks.am</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 25 June 2017" href="ccdspann.php?id=28412">Armavir Branch Customer Service Specialist / Varks.am</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 25 June 2017" href="ccdspann.php?id=28411">Abovyan Branch Customer Service Specialist / Varks.am</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 25 June 2017" href="ccdspann.php?id=28397">Accounts Payable Clerk / MAF Carrefour Armenia</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 25 June 2017" href="ccdspann.php?id=28398">Marketing Manager /  Aratours Travel Services</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 25 June 2017" href="ccdspann.php?id=28407">Mine Surveyor / Lydian Armenia</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 25 June 2017" href="ccdspann.php?id=28408">Field Engineer / Lydian Armenia</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 24 June 2017" href="ccdspann.php?id=28399">Analyst / Atenk</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 24 June 2017" href="ccdspann.php?id=28406">Warranty Manager / Nissan Armenia</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 15 June 2017" href="ccdspann.php?id=28405">Senior Applications Support Administrator / ArmenTel</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 24 June 2017" href="ccdspann.php?id=28402">Customer Care and Sales Representative / e-World Systems</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 24 June 2017" href="ccdspann.php?id=28400">Sales and Service Specialist / Ucom</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 15 June 2017" href="ccdspann.php?id=28395">Sales Specialist / Spayka</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 16 June 2017, 4 p.m." href="ccdspann.php?id=28392">Finance Officer / American Councils for International Education</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 23 June 2017" href="ccdspann.php?id=28319">Database Developer / Armeconombank</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 23 June 2017" href="ccdspann.php?id=28396">Web Development Team Manager / Web Projects</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 23 June 2017" href="ccdspann.php?id=28390">Back Office Officer / FXTM Armenia</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 23 June 2017" href="ccdspann.php?id=28394">Chemist/ Microbiologist / Jermuk International Pepsi-Cola Bottler</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 15 June 2017" href="ccdspann.php?id=28382">Coordinator of Development and External Relations / Creative Armenia</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 22 June 2017" href="ccdspann.php?id=28391">QA Engineer / Zangi</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 22 June 2017" href="ccdspann.php?id=28389">Chef / Brand Group</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 22 June 2017" href="ccdspann.php?id=28387">French Language Specialist / AKKE Trading</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 22 June 2017" href="ccdspann.php?id=28378">Brand Manager / Rouge Beaute</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 22 June 2017" href="ccdspann.php?id=28388">Travel Consultant / D&amp;V Travel</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 22 June 2017" href="ccdspann.php?id=28386">Java Software Developer / HS International</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 22 June 2017" href="ccdspann.php?id=28385">.NET Service Engineer/ Analyst / HS International</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 22 June 2017" href="ccdspann.php?id=28381">Financial Specialist / SAS Group</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 21 June 2017" href="ccdspann.php?id=28376">Logistics Support Specialist / Reload Freight Systems</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 21 June 2017" href="ccdspann.php?id=28377">Business Development Manager / Euro Truck</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 21 June 2017" href="ccdspann.php?id=28375">Senior Software Engineer / RUSHC</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 21 June 2017" href="ccdspann.php?id=28371">IT Specialist / Unitech</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 19 June 2017" href="ccdspann.php?id=28364">Marketing Manager / Rouge Beaute</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 15 June 2017" href="ccdspann.php?id=28372">Digital Content Writer/ Social Media Specialist / Prometey Bank</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 19 June 2017" href="ccdspann.php?id=28355">Senior .NET Developer / Fast Credit Capital UCO</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 19 June 2017" href="ccdspann.php?id=28363">Hotel Sales Manager / Areve Residence Boutique Hotel</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 18 June 2017" href="ccdspann.php?id=28351">Marketing Manager / Figaro Restaurant Group</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 17 June 2017" href="ccdspann.php?id=28340">Doctor Expert / SIL Insurance</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 17 June 2017" href="ccdspann.php?id=28359">Sales Manager / U-cell</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 17 June 2017" href="ccdspann.php?id=28324">Senior PHP Developer / Blockchain Research and Development Hub</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 17 June 2017" href="ccdspann.php?id=28350">Product Manager/ QA Engineer / Seven Smarts</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 17 June 2017" href="ccdspann.php?id=28318">.NET Developer / Armeconombank</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 17 June 2017" href="ccdspann.php?id=28348">Sales Agronomist in Shirak Region / Agrimatco Armenia</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 16 June 2017" href="ccdspann.php?id=28338">UI Developer / CargoMatrix</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 16 June 2017" href="ccdspann.php?id=28337">Backend Developer / CargoMatrix</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 16 June 2017" href="ccdspann.php?id=28336">IT Project Manager / CargoMatrix</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 16 June 2017" href="ccdspann.php?id=28335">Cafeteria Cook in Gyumri  / Tumo Center for Creative Technologies</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 16 June 2017" href="ccdspann.php?id=28325">Senior JavaScript Developer / Digitain</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 16 June 2017" href="ccdspann.php?id=28321">JavaScript Developer / SFL</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 15 June 2017" href="ccdspann.php?id=28216">Procurement Manager / Telia-Med</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 15 June 2017" href="ccdspann.php?id=28313">User Behavior Research Scientist / PicsArt</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 15 June 2017" href="ccdspann.php?id=28314">Deep Learning Research Scientist / PicsArt</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 15 June 2017" href="ccdspann.php?id=28315">Senior Software Developer / XNTrends</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 14 June 2017" href="ccdspann.php?id=28307">UI/ UX Designer / IUNetworks</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 14 June 2017" href="ccdspann.php?id=28305">Engineering Director  / Ginosi Apartels</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 14 June 2017" href="ccdspann.php?id=28301">Senior Systems Engineer / Ginosi Apartels</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 14 June 2017" href="ccdspann.php?id=28304">Senior Android Developer / Ginosi Apartels</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 14 June 2017" href="ccdspann.php?id=27954">Senior Java Developer / EPAM Systems</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 14 June 2017" href="ccdspann.php?id=28302">Digital Marketing Specialist / Lesona</a></td>
</tr>
<tr>
<td valign="top" width="8"><img border="0" src="images/bullet_fs.jpg" width="6" height="6" vspace="6" alt="bullet" /></td>
<td><a title="Application Deadline: 14 June 2017" href="ccdspann.php?id=28297">Rental Agent for &quot;Sixt&quot; Armenia / Fora</a></td>
</tr>
</table>

In [13]:
my_table = tables[0]
rows = my_table.findAll('tr')

In [14]:
data_list = []
for i in rows:
    columns = i.findAll('td')
    for j in columns:
        data_list.append(j.text)

In [15]:
print(data_list)


[u'JOB OPPORTUNITIES', u'', u'International Sales Manager / Intelcom Line', u'', u'Dentist / Telia-Med', u'', u'UI/ UX Designer / Sgames', u'', u'Senior Front-End Developer / Benivo', u'', u'Senior Back-End Developer / Benivo', u'', u'Program Development Associate / IDeA', u'', u'Administrative Clerk/ Chauffeur / U.S. Embassy Yerevan', u'', u'Business Advisor / Inecobank', u'', u'Full Stack Developer / Baldi Retail', u'', u'Credit Specialist / Kilikia UCO', u'', u'Credit Information and Collection Officer / Byblos Bank Armenia', u'', u'Head of Credit Information and Collection Unit / Byblos Bank Armenia', u'', u'Senior PHP/ Magento Developer / CertiPro Solutions', u'', u'Product Manager / e-World Systems', u'', u'Grants Manager for Bridge4CSOs Project / Armenian General Benevolent Union', u'', u'Development and Fundraising Officer / CRRC-Armenia', u'', u'Administrative Assistant / SAS Group', u'', u'UI/ UX Designer / SFL', u'', u'Head of Disaster Management Department / Armenian Red Cross Society', u'', u'Data Manager/ IT Specialist / DarmanTest Laboratories', u'', u'Graphic Designer / Grand Candy', u'', u'Category Manager / Spayka', u'', u'Web Content Manager / FXTM Armenia', u'', u'Retail Store Manager/ Brand Manager / Guess Armenia', u'', u'Sales Consultant / Chronograph Boutique', u'', u'Field Engineer / Lydian Armenia', u'', u'Maintenance Planning Engineer / Lydian Armenia', u'', u'Short-Term Expert for Gap Analysis on Current Internal Control System  / GIZ', u'', u'Procurement and Contract Management Specialist / Transport Project Implementation Organization', u'', u'UNIX System Adminsitrator / VivaCell-MTS', u'', u'RAN Engineer / VivaCell-MTS', u'', u'Transmission Engineer / VivaCell-MTS', u'', u'Organizational Capacity Assessment Expert / Armenian Red Cross Society', u'', u'Sales Consultant / Mobile Centre', u'', u'Financial Analyst / La Galleria Luxury Boutiques', u'', u'Assistant Project Manager / BigBek', u'', u'Senior Front-End Developer / BigBek', u'', u'Graphic Designer / BigBek', u'', u'Web Developer / BigBek', u'', u'Director of Recruitment, Selection and Matriculation / Teach For Armenia', u'', u'Deputy CFO/ Chief Accountant / Mega Food', u'', u'HVAC Systems Design Engineer / Consel', u'', u'Content Manager / Frismos', u'', u'iOS Developer / M&amp;M Media', u'', u'Android Developer / M&amp;M Media', u'', u'Junior Software Developer / CertiPro Solutions', u'', u'Senior Network Administrator / ArmenTel', u'', u'Analyst / European Bank for Reconstruction and Development', u'', u'Junior iOS Developer / Zangi', u'', u'Revenue Assurance Senior Specialist / VivaCell-MTS', u'', u'Internet Marketing Specialist / Best Card', u'', u'Administrative Assistant, Marketing Department / Aras Food', u'', u'Back-End Developer / ApolloBytes', u'', u'ReactJS Developer / ApolloBytes', u'', u'Director of Sales Department / VAS Group', u'', u'Persian Language Specialist / Rosgosstrakh-Armenia', u'', u'Executive Assistant / Sef International UCO', u'', u'Lawyer / Kapan Mining and Processing Company', u'', u'ISMS Senior Analyst / VivaCell-MTS', u'', u'Senior .NET Developer / SouthTech Consulting', u'', u'Chief Accountant / Noyan Tapan', u'', u'Leading Loan Specialist of Microcredit Block in Head Office / Kamurj UCO', u'', u'Senior Internal Auditor / FINCA UCO', u'', u'Credit Officer / Prometey Bank', u'', u'Director / Civic Development and Partnership Foundation', u'', u'Finance Director / Reso Insurance', u'', u'FTTB, ADSL/ VDSL Networks Monitoring Technical Expert / ArmenTel', u'', u'Digital Platforms Manager / ArmenTel', u'', u'Consultant/ Seller / TST', u'', u'Operations Research Developer / Optym Armenia', u'', u'Product Manager / Berlin-Chemie Armenian Representation', u'', u'Policy Analyst / UNDP Armenia Office', u'', u'Front-End Developer / 4H', u'', u'Specialist of Reconciliation Division / ArmSwissBank', u'', u'Specialist of Loans Processing and Reporting Division / ArmSwissBank', u'', u'Accountant / Zeppelin Armenia', u'', u'Head of Digital Banking / Ameriabank', u'', u'Data Analyst / IPSC', u'', u'Account Manager, Client Service Department / McCann Erickson', u'', u'Digital Marketing Specialist / McCann Erickson', u'', u'Medical Representative/ Medical Equipment Specialist / Concern-Energomash', u'', u'Head of Finance Management/ Chief Accountant / Transport Project Implementation Organization', u'', u'Receptionist / Envoy Hostel', u'', u'Consultant on Cost Benefit Analysis of Alternative Pre-school Educational Services in Consolidated Communities of Armenia / UNICEF', u'', u'Digital Innovations Specialist / Ucom', u'', u'Graphic  Designer / Baldi Retail', u'', u'Mid-Level Front-End Software Engineer / Aarki', u'', u'Junior Front-End Software Engineer / Aarki', u'', u'Java Developer / IUNetworks', u'', u'JavaScript Developer / IUNetworks', u'', u'Media Planner / Media Systems', u'', u'Sales Manager / Marli', u'', u'QC/ QA Manager/ Chief Engineer / MLL Industries', u'', u'Customer Service Specialist / Varks.am', u'', u'Audit Assistant / KPMG Armenia', u'', u'Sales Assistant / Bass Boutique Hotel', u'', u'Technical Support Specialist / Ucom', u'', u'Head of Research Center / Darmantest Laboratories', u'', u'Senior Full Stack Web Developer / Evolver', u'', u'Social Media Marketing Specialist / SAS Group', u'', u'Application Security Engineer / Workfront', u'', u'Security Operations Analyst / Workfront', u'', u'Head of Marketing / Digitain', u'', u'HR Manager / Monazite', u'', u'Restaurant Manager / Monazite', u'', u'Hotel Director / Monazite', u'', u'IT Administrator / BDO Armenia', u'', u'Ejmiatsin Branch Customer Service Specialist / Varks.am', u'', u'Gyumri Branch Customer Service Specialist / Varks.am', u'', u'Stepanavan Branch Customer Service Specialist / Varks.am', u'', u'Vanadzor Branch Customer Service Specialist / Varks.am', u'', u'Armavir Branch Customer Service Specialist / Varks.am', u'', u'Abovyan Branch Customer Service Specialist / Varks.am', u'', u'Accounts Payable Clerk / MAF Carrefour Armenia', u'', u'Marketing Manager /  Aratours Travel Services', u'', u'Mine Surveyor / Lydian Armenia', u'', u'Field Engineer / Lydian Armenia', u'', u'Analyst / Atenk', u'', u'Warranty Manager / Nissan Armenia', u'', u'Senior Applications Support Administrator / ArmenTel', u'', u'Customer Care and Sales Representative / e-World Systems', u'', u'Sales and Service Specialist / Ucom', u'', u'Sales Specialist / Spayka', u'', u'Finance Officer / American Councils for International Education', u'', u'Database Developer / Armeconombank', u'', u'Web Development Team Manager / Web Projects', u'', u'Back Office Officer / FXTM Armenia', u'', u'Chemist/ Microbiologist / Jermuk International Pepsi-Cola Bottler', u'', u'Coordinator of Development and External Relations / Creative Armenia', u'', u'QA Engineer / Zangi', u'', u'Chef / Brand Group', u'', u'French Language Specialist / AKKE Trading', u'', u'Brand Manager / Rouge Beaute', u'', u'Travel Consultant / D&amp;V Travel', u'', u'Java Software Developer / HS International', u'', u'.NET Service Engineer/ Analyst / HS International', u'', u'Financial Specialist / SAS Group', u'', u'Logistics Support Specialist / Reload Freight Systems', u'', u'Business Development Manager / Euro Truck', u'', u'Senior Software Engineer / RUSHC', u'', u'IT Specialist / Unitech', u'', u'Marketing Manager / Rouge Beaute', u'', u'Digital Content Writer/ Social Media Specialist / Prometey Bank', u'', u'Senior .NET Developer / Fast Credit Capital UCO', u'', u'Hotel Sales Manager / Areve Residence Boutique Hotel', u'', u'Marketing Manager / Figaro Restaurant Group', u'', u'Doctor Expert / SIL Insurance', u'', u'Sales Manager / U-cell', u'', u'Senior PHP Developer / Blockchain Research and Development Hub', u'', u'Product Manager/ QA Engineer / Seven Smarts', u'', u'.NET Developer / Armeconombank', u'', u'Sales Agronomist in Shirak Region / Agrimatco Armenia', u'', u'UI Developer / CargoMatrix', u'', u'Backend Developer / CargoMatrix', u'', u'IT Project Manager / CargoMatrix', u'', u'Cafeteria Cook in Gyumri  / Tumo Center for Creative Technologies', u'', u'Senior JavaScript Developer / Digitain', u'', u'JavaScript Developer / SFL', u'', u'Procurement Manager / Telia-Med', u'', u'User Behavior Research Scientist / PicsArt', u'', u'Deep Learning Research Scientist / PicsArt', u'', u'Senior Software Developer / XNTrends', u'', u'UI/ UX Designer / IUNetworks', u'', u'Engineering Director  / Ginosi Apartels', u'', u'Senior Systems Engineer / Ginosi Apartels', u'', u'Senior Android Developer / Ginosi Apartels', u'', u'Senior Java Developer / EPAM Systems', u'', u'Digital Marketing Specialist / Lesona', u'', u'Rental Agent for &quot;Sixt&quot; Armenia / Fora']

In [16]:
type(data_list)


Out[16]:
list

In [17]:
data_list[:10]


Out[17]:
[u'JOB OPPORTUNITIES',
 u'',
 u'International Sales Manager / Intelcom Line',
 u'',
 u'Dentist / Telia-Med',
 u'',
 u'UI/ UX Designer / Sgames',
 u'',
 u'Senior Front-End Developer / Benivo',
 u'']